home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Camelot / Camelot 134 (1991-10)(Swedish User Group of Amiga)(SE)(PD)[WB].zip / Camelot 134 (1991-10)(Swedish User Group of Amiga)(SE)(PD)[WB].adf / RxSlides / RxSliPic.h < prev    next >
C/C++ Source or Header  |  1990-03-08  |  738b  |  21 lines

  1. /* 
  2.  *  RxSlidesPic.h -- picture struct for RxSlides
  3.  *
  4.  *  Assumes RxSlides.h (for BitMapHeader struct typedef)
  5.  */
  6.  
  7. /*---------------------------------------------------------------------------
  8.  * Picture structure - this contains all the revalent data for a picture file
  9.  *-------------------------------------------------------------------------*/
  10.  
  11. struct picture
  12.   {
  13.   int            numcolors;    /* # of valid colors */
  14.   int            fd;        /* the file # for this file */
  15.   struct BitMap        *bm;        /* a bitmap to store the picture */
  16.   long            bodysize;    /* # of bytes in the body data */
  17.   struct BitMapHeader    bmhd;
  18.   UBYTE            cmap[CMSIZE];    /* the color values for this picture */
  19.     /* don't use the ColorRegister structure if using Aztec 'C' */
  20.   };
  21.